ODataV4ResultList<T>

A container for deserializing an OData v4 result and its associated metadata.

Syntax

public class ODataV4ResultList<T>

Inheritance

Properties

ExpectedItemCount

[JsonPropertyName("@odata.count")]
public string ExpectedItemCount { get; set; }
Maps to the “odata.count” property.

Returns

string

Items

[JsonPropertyName("value")]
public List<T> Items { get; set; }
A containing the items returned from the service.

Returns

List<T>
[JsonPropertyName("@odata.context")]
public string MetadataReferenceLink { get; set; }
Maps to the “@odata.context” property, and specifies which item in the model metadata is being returned.

Returns

string
[JsonPropertyName("@odata.nextLink")]
public string NextPageLink { get; set; }
Maps to the “@odata.nextLink” property, and specifies the URL to call to get the next page of results.

Returns

string